home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 1.iso / pc / data / m09intro.dir / 00038.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  868 b   |  37 lines

  1. on exitFrame
  2.   global gCurrentHtPage, gTotalHtPages
  3.   if rollOver(5) then
  4.     puppetSprite(5, 1)
  5.     set the castNum of sprite 5 to cast "b071.roll"
  6.     updateStage()
  7.   else
  8.     set the castNum of sprite 5 to cast "b071"
  9.     updateStage()
  10.   end if
  11.   if gCurrentHtPage > 1 then
  12.     if rollOver(6) then
  13.       puppetSprite(6, 1)
  14.       set the castNum of sprite 6 to cast "b073.roll"
  15.       updateStage()
  16.     else
  17.       puppetSprite(6, 1)
  18.       set the castNum of sprite 6 to cast "b073"
  19.       updateStage()
  20.     end if
  21.   end if
  22.   if gCurrentHtPage < gTotalHtPages then
  23.     if rollOver(7) then
  24.       puppetSprite(7, 1)
  25.       set the castNum of sprite 7 to cast "b072.roll"
  26.       updateStage()
  27.     else
  28.       puppetSprite(7, 1)
  29.       set the castNum of sprite 7 to cast "b072"
  30.       updateStage()
  31.     end if
  32.   end if
  33.   mainMenuRollovers()
  34.   updateStage()
  35.   go(the frame)
  36. end
  37.